Ignore gdk-pixbuf deprecations
authorMatthias Clasen <mclasen@redhat.com>
Mon, 27 Oct 2014 11:05:22 +0000 (07:05 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 27 Oct 2014 11:05:22 +0000 (07:05 -0400)
gtk/gtkiconcache.c
gtk/gtktextbufferserialize.c

index 091091e8cb8f9d7093343d8c55814f6e4e6b240a..ac6035283d9b495d690596309fdb64cdeef22e9e 100644 (file)
@@ -510,6 +510,7 @@ _gtk_icon_cache_get_icon (GtkIconCache *cache,
 
   length = GET_UINT32 (cache->buffer, pixel_data_offset + 4);
   
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
   if (!gdk_pixdata_deserialize (&pixdata, length, 
                                (guchar *)(cache->buffer + pixel_data_offset + 8),
                                &error))
@@ -520,6 +521,7 @@ _gtk_icon_cache_get_icon (GtkIconCache *cache,
 
       return NULL;
     }
+G_GNUC_END_IGNORE_DEPRECATIONS
 
   pixbuf = gdk_pixbuf_new_from_data (pixdata.pixel_data, GDK_COLORSPACE_RGB,
                                     (pixdata.pixdata_type & GDK_PIXDATA_COLOR_TYPE_MASK) == GDK_PIXDATA_COLOR_TYPE_RGBA,
index e065f109ef5989c9e1b0d28c47f263a28f024624..acb982fd7ce997c273e8565f587a5570afa26e30 100644 (file)
@@ -590,6 +590,7 @@ serialize_text (GtkTextBuffer        *buffer,
   g_string_append (context->text_str, "</text>\n</text_view_markup>\n");
 }
 
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 static void
 serialize_pixbufs (SerializationContext *context,
                   GString              *text)
@@ -611,6 +612,7 @@ serialize_pixbufs (SerializationContext *context,
       g_free (tmp);
     }
 }
+G_GNUC_END_IGNORE_DEPRECATIONS
 
 guint8 *
 _gtk_text_buffer_serialize_rich_text (GtkTextBuffer     *register_buffer,
@@ -1068,6 +1070,7 @@ typedef struct
   const gchar *start;
 } Header;
 
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 static GdkPixbuf *
 get_pixbuf_from_headers (GList   *headers,
                          int      id,
@@ -1090,6 +1093,7 @@ get_pixbuf_from_headers (GList   *headers,
 
   return pixbuf;
 }
+G_GNUC_END_IGNORE_DEPRECATIONS
 
 static void
 parse_apply_tag_element (GMarkupParseContext  *context,